body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}
/* Estilos para la barra de scroll de las capturas */
.screenshot-carousel::-webkit-scrollbar {
    height: 8px;
}
.screenshot-carousel::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
}
.screenshot-carousel::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 10px;
}
.screenshot-carousel::-webkit-scrollbar-thumb:hover {
    background: #c1c5c9;
}

/* --- Estilos para las estrellas de calificación (Página Principal) --- */
.star-rating-input {
    display: none;
}
.star-rating-label {
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
}
.star-rating-input:hover ~ .star-rating-label,
.star-rating-label:hover {
    color: #ffc107;
}
/* Invertir el orden de hover para que se iluminen las estrellas anteriores */
.star-rating-container:hover .star-rating-input:hover ~ .star-rating-label {
    color: #ccc;
}
.star-rating-container .star-rating-input:hover ~ .star-rating-label:hover,
.star-rating-container .star-rating-input:hover ~ .star-rating-label:hover ~ .star-rating-label {
     color: #ffc107;
}

/* --- Estilos para la ventana Modal de Reseñas --- */
#review-modal {
    display: none; /* Se muestra con JS */
    z-index: 50;
}
#review-modal.flex {
    display: flex;
}
#review-modal > div {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Estilos para que los inputs del modal se vean bien */
#review-modal input[type="text"],
#review-modal textarea {
    border: 1px solid #d1d5db; /* Borde gris claro */
    padding: 0.75rem;
    border-radius: 0.5rem; /* Bordes redondeados */
    width: 100%;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

#review-modal input[type="text"]:focus,
#review-modal textarea:focus {
    border-color: #16a34a; /* Borde verde al enfocar */
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
